home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / mui / bcc_src.lha / Parser / MethodDef.h < prev    next >
C/C++ Source or Header  |  1997-06-21  |  298b  |  22 lines

  1. #ifndef METHODDEF_H
  2. #define METHODDEF_H
  3.  
  4. #include "InterDef.h"
  5.  
  6. #define MMET_ASKMINMAX    1
  7.  
  8. #define SW_LOCAL 1<<14
  9.  
  10. class MethodDef: public InterDef {
  11.  
  12. public:
  13.     char *msgtype;
  14.  
  15.     char GetTagType( void ) { return 'M'; }
  16.  
  17.     MethodDef( char *n, short len, ClassDef *clsd, unsigned short sw );
  18.  
  19. };
  20.  
  21. #endif
  22.